Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632703 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/148 - Side NavBar

style.css cody/swapnilsparsh/30DaysOfJavaScript/148 - Side NavBar/style.css
58 Views
0 Comments
* {
margin: 0;
padding: 0;
box-sizing: border-box;
list-style: none;
}

@font-face {
index.html cody/swapnilsparsh/30DaysOfJavaScript/148 - Side NavBar/index.html
354 Views
0 Comments
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="30DaysOfJavaScript/style.css" />
script.js cody/swapnilsparsh/30DaysOfJavaScript/148 - Side NavBar/script.js
131 Views
0 Comments
$(document).ready(function () {
$(window).scroll(function () {
if ($(this).scrollTop() >= 100) {
$(".scrollToTop").fadeIn();
} else {
$(".scrollToTop").fadeOut();
}
});